From b0417077d06ed0311a3ab7f6b1cb9963d1934f2a Mon Sep 17 00:00:00 2001 From: parkrrrr Date: Tue, 23 May 2006 15:07:12 +0000 Subject: [PATCH] fixed error where two escaped backslashes in a row would cause havoc --- google.c | 1 + 1 file changed, 1 insertion(+) diff --git a/google.c b/google.c index 85dbab357..8633be6ce 100644 --- a/google.c +++ b/google.c @@ -313,6 +313,7 @@ google_read(void) end = encoded_points; while ( (end = strstr(end, "\\\\" ))) { memmove( end, end+1, strlen(end)+1 ); + end++; } end = strchr( encoded_levels, '\'' ); if ( end ) { -- 2.30.2